Scripts to publish Firefox for Android on Google Play Store.
⚠️ You need Python >= 3.6 to run this set of scripts. Python 2 isn't supported starting version 0.5.0. Python 3.5 was removed in version 3.0.0.uv venv
uv pip install -e .
- If using push_aab.py, download
bundletool
from https://github.com/google/bundletool/releases and set environment variableBUNDLETOOL_PATH=path/to/bundletool.jar
- Execute either
mozapkpublisher/push_apk.py
, ormozapkpublisher/push_aab.py
, ormozapkpublisher/update_apk_description.py
- Run
--help
to each of these script to know how to call them.
uv tool install tox --with tox-uv
uv tool run tox -e py39
uv tool run hatch build
A guide to manually publish APKs onto Google Play Store
- Generate a Google Play Store json certificate. This certificate needs to have write access to the app you want to publish. In this context, "app" means Fennec, Fennec Beta or Fennec Nightly.
- Execute the steps defined in the section above.
- Download the latest signed builds
uv run python ./mozapkpublisher/push_apk.py --no-gp-string-update --track beta --credentials /path/to/your/googleplay/creds.json x86.apk arm.apk
- Note
beta
track on Google Play, that's our way to show to people on Play Store that it's not a finished product. We don't use the "production" track for Nightly, unlike beta and release.
- If all goes well, add
--commit
to the command line and rerun it.